#!/bin/sh

# As requested in 11542577

authorizationPath="/private/etc/authorization"

# SRCSYSTEMVERSION gives us only MAJOR.MINOR, which is what we want here
if [[ ${SRCSYSTEMVERSION} == "10.7" ]]; then
	if [[ -f "${SRCROOT}/private/etc/emond.d/rules/Xsan.plist" ]]; then
		/usr/libexec/xsanmgr/bundles/xsanmgr_xsan.bundle/Contents/Resources/migrate_xsan2.3_notifications "${SRCROOT}/private/etc/emond.d/rules/Xsan.plist" "${DSTROOT}/Library/Preferences/Xsan/notifications3.plist";
	fi
fi

